func internal/strconv.lower
20 uses
internal/strconv (current package)
atof.go#L130: if i < len(s) && lower(s[i]) == 'e' {
atof.go#L190: if i+2 < len(s) && s[i] == '0' && lower(s[i+1]) == 'x' {
atof.go#L233: case base == 16 && 'a' <= lower(c) && lower(c) <= 'f':
atof.go#L238: mantissa += uint64(lower(c) - 'a' + 10)
atof.go#L264: if i < len(s) && lower(s[i]) == expChar {
atoi.go#L11: func lower(c byte) byte {
atoi.go#L66: case len(s) >= 3 && lower(s[1]) == 'b':
atoi.go#L69: case len(s) >= 3 && lower(s[1]) == 'o':
atoi.go#L72: case len(s) >= 3 && lower(s[1]) == 'x':
atoi.go#L115: case 'a' <= lower(c) && lower(c) <= 'z':
atoi.go#L116: d = lower(c) - 'a' + 10
atoi.go#L267: if len(s) >= 2 && s[0] == '0' && (lower(s[1]) == 'b' || lower(s[1]) == 'o' || lower(s[1]) == 'x') {
atoi.go#L270: hex = lower(s[1]) == 'x'
atoi.go#L276: if '0' <= s[i] && s[i] <= '9' || hex && 'a' <= lower(s[i]) && lower(s[i]) <= 'f' {
ftoa.go#L573: if fmt == lower(fmt) {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |